It will always throw System.NotSupportedException as ReadOnlyDictionary is read-only.

Namespace:  Microsoft.Rtc.Collaboration.AudioVideo
Assembly:  Microsoft.Rtc.Collaboration(in Microsoft.Rtc.Collaboration.dll)

Syntax

Visual Basic (Declaration)
Public 
Function 
Remove ( _
	
key 
As K _
) 
As 
Boolean
C#
public 
bool 
Remove(
		K 
key
)
Visual C++
public:
virtual 
bool 
Remove(
		K 
key
) 
sealed
JavaScript
function 
remove(
key);

Parameters

key
Type: K
The key of the element to remove.

Return Value

It will always throw an exception as ReadOnlyDictionary is read-only.

Implements

IDictionaryRemove(UTP)

Exceptions

Exception Condition
NotSupportedException Thrown when this method is called.

See Also